home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 3 / Cream of the Crop 3.iso / clipper / ks94an.zip / Q_OPEN.HDR < prev    next >
Text File  |  1994-04-25  |  1KB  |  40 lines

  1. /******************************************************************************
  2.                  The Klipper Library, for CA-Clipper 5.x
  3.         Copyright (c), 1994, Wallace Information Systems Engineering
  4.  
  5. FUNCTION:
  6.  
  7. _Q_Open( cTable, cAlias, cIndex, lXFlag ) --> nSelectArea
  8.  
  9. PARAMETERS:
  10.  
  11. cTable - Database Table to Open
  12. cAlias - Alias to use for this table in this area
  13. cIndex - Index to Open, if not specified, defaults to _SetIndex(cTable)
  14. lXFlag - Exclusive use flag, TRUE = Exclusive
  15.  
  16. SHORT:
  17.  
  18. Quick Open a file in-line.
  19.  
  20. DESCRIPTION:
  21.  
  22. _Q_Open is useful for performing an inline database open as it can be
  23. called as an inline function.
  24.  
  25. Returns: Alias of the current work area.  This should equal the database
  26. you requested.
  27.  
  28. NOTE:
  29.  
  30.  
  31.  
  32. EXAMPLE:
  33.  
  34. _Q_Open('ACTIVITY.DBF','ACODE','ACTIVITY.NTX',FALSE)
  35.  
  36. ACTIVITY.DBF is opened in SHARED mode next available work area under alias
  37. ACODE and the index ACTIVITY.NTX is opened.
  38.  
  39. ******************************************************************************/
  40.